home *** CD-ROM | disk | FTP | other *** search
- onClipEvent(load){
- if(myGoCommand == "blow")
- {
- this._x = _parent.lander._x + (random(20) - 10);
- this._y = _parent.lander._y + (random(20) - 10);
- gotoAndStop(98, random(5) + 5);
- grow = random(12);
- }
- if(myGoCommand == "go")
- {
- xDirect = (random(15) - 7) / 10 + Math.cos(0.017453292519943295 * _parent.lander.myRotation);
- yDirect = (random(15) - 7) / 10 + Math.sin(0.017453292519943295 * _parent.lander.myRotation);
- gotoAndStop(98, random(2) + 1);
- }
- myTTL = getTimer();
- }
-